home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / progut~1 / stdwin.zoo / tools / Makefile.16 < prev    next >
Encoding:
Makefile  |  1990-03-30  |  605 b   |  32 lines

  1. CC = cgcc
  2. CFLAGS = -O -mshort -I../h -Wall  $(XFLAGS)
  3.  
  4. SRCS=        endian.c getopt.c glob.c monocase.c strdup.c swap.c
  5. # gcc users: do not use getopt.o from here, use lib
  6. OBJS=        endian.o glob.o monocase.o strdup.o swap.o
  7. ALL=        tools16
  8.  
  9. all:        $(ALL)
  10.  
  11. $(ALL): $(OBJS)
  12.     touch $(ALL)
  13.  
  14. clean:
  15.     rm -f core *.o [,@#]*
  16.  
  17. realclean:    clean
  18.     rm -f lib.a tags *.[A-Z] $(ALL)
  19.  
  20. # End Rules
  21. endian.o: endian.c
  22. endian.o: ../h/endian.h
  23. getopt.o: getopt.c
  24. getopt.o: ../h/configure.h
  25. glob.o: glob.c
  26. monocase.o: monocase.c
  27. strdup.o: strdup.c
  28. strdup.o: ../h/tools.h
  29. strdup.o: ../h/configure.h
  30. strdup.o: ../h/l_defs.h
  31. swap.o: swap.c
  32.